home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Object = "{FAEEE763-117E-101B-8933-08002B2F4F5A}#1.1#0"; "DBLIST32.OCX"
- Begin VB.Form Form1
- Caption = "Form1"
- ClientHeight = 2625
- ClientLeft = 60
- ClientTop = 345
- ClientWidth = 4575
- LinkTopic = "Form1"
- ScaleHeight = 2625
- ScaleWidth = 4575
- StartUpPosition = 3 'Windows Default
- Begin VB.Data Data2
- Caption = "Data2"
- Connect = "Access"
- DatabaseName = "c:\VBDB\Working\Biblio.mdb"
- DefaultCursorType= 0 'DefaultCursor
- DefaultType = 2 'UseODBC
- Exclusive = 0 'False
- Height = 300
- Left = 2280
- Options = 0
- ReadOnly = 0 'False
- RecordsetType = 1 'Dynaset
- RecordSource = "Titles"
- Top = 2280
- Width = 2295
- End
- Begin VB.TextBox Text1
- Height = 495
- Left = 2280
- TabIndex = 1
- Text = "Text1"
- Top = 120
- Width = 2175
- End
- Begin VB.Data Data1
- Caption = "Data1"
- Connect = "Access"
- DatabaseName = "C:\VBDB\Working\Biblio.mdb"
- DefaultCursorType= 0 'DefaultCursor
- DefaultType = 2 'UseODBC
- Exclusive = 0 'False
- Height = 300
- Left = 120
- Options = 0
- ReadOnly = 0 'False
- RecordsetType = 1 'Dynaset
- RecordSource = "Publishers"
- Top = 2280
- Width = 2100
- End
- Begin MSDBCtls.DBList DBList1
- Bindings = "QuickExample5.frx":0000
- DataField = "PubID"
- DataSource = "Data2"
- Height = 2010
- Left = 120
- TabIndex = 0
- Top = 120
- Width = 2055
- _ExtentX = 3625
- _ExtentY = 3545
- _Version = 327680
- ListField = "Company Name"
- BoundColumn = "PubID"
- End
- Attribute VB_Name = "Form1"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Option Explicit
- Private Sub DBList1_Click()
- Text1.Text = DBList1.BoundText
- End Sub
-